home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / GNU_KIT / DISK9.ZIP / include / utime.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-10  |  273 b   |  16 lines

  1. #ifndef _U_TIME_H
  2. #define _U_TIME_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. struct utimbuf {            /* type for times() call */
  9.     time_t    actime;
  10.     time_t    modtime;
  11. };
  12.  
  13. __EXTERN int utime __PROTO((const char *path, const struct utimbuf *times));
  14.  
  15. #endif  /* _U_TIME_H */
  16.